home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C++ / Frameworks / Argus Frameworks 2.1 / Argus Libraries 2.1 / Argus Standards / ArgusHelpBalloons.r < prev    next >
Text File  |  1996-01-04  |  2KB  |  69 lines

  1. /**********************************************************************
  2.  
  3.     ArgusAboutBalloons.r
  4.  
  5. ***********************************************************************/
  6.  
  7. #include <Types.r>
  8. #include <BalloonTypes.r>
  9.  
  10. resource 'hdlg' (598, "Help Balloons", purgeable){
  11.   /* Header */
  12.   HelpMgrVersion,
  13.   0,                  /* start help with first item in DITL */
  14.   hmSaveBitsNoWindow, /* hmDefaultOptions or hmSaveBitsNoWindow */
  15.   0,                  /* balloon definition */
  16.   0,                  /* variation code or position code, reference
  17.                          IM: More Macintosh Toolbox p3-10 */
  18.   
  19.   /* Missing Component */
  20.   HMSkipItem {
  21.   },
  22.   
  23.   /* Help */
  24.   {
  25.     /* [1] */
  26.     HMStringREsItem { /* store help messages in STR# 500 */
  27.     { 0, 0 },         /* default tip location is { 0, 0 } */
  28.     { 0, 0, 0, 0 },   /* default alternate rectangle */
  29.     598, 1,           /* OK button */
  30.     0, 0,             /* never dimmed */
  31.     0, 0,             /* never checked */
  32.     0, 0              /* never marked */
  33.     },
  34.     
  35.     /* [2] */
  36.     HMStringREsItem {
  37.     { 0, 0 },
  38.     { 0, 0, 0, 0 },
  39.     598, 2,           /* Print button */
  40.     0, 0,
  41.     0, 0,
  42.     0, 0
  43.     },
  44.  
  45.     /* [3] */
  46.     HMStringREsItem {
  47.     { 0, 0 },
  48.     { 0, 0, 0, 0 },
  49.     598, 3,           /* Save button */
  50.     0, 0,
  51.     0, 0,
  52.     0, 0
  53.     },
  54.  
  55.   }
  56. };
  57.  
  58. resource 'STR#' (598, "Help Dialog Help Strings") {
  59.   {
  60.   /* [1] */
  61.   "To dismiss dialog, click this button.";
  62.   /* [2] */
  63.   "Use to print above help information.";
  64.   /* [3] */
  65.   "Use to save above help information to a text file.";
  66.   }
  67. };
  68.  
  69. // End of File